Colin Bookman / MicIO

Dependents:   MicIO-Example

Files at this revision

API Documentation at this revision

Comitter:
cbookman3
Date:
Sun Mar 23 20:45:58 2014 +0000
Parent:
2:c90f916f0b08
Commit message:
forgot to remove lcd library (used in debugging)

Changed in this revision

MicIO.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r c90f916f0b08 -r 1630409f9bd6 MicIO.cpp
--- a/MicIO.cpp	Sun Mar 23 20:43:55 2014 +0000
+++ b/MicIO.cpp	Sun Mar 23 20:45:58 2014 +0000
@@ -1,6 +1,4 @@
 #include "MicIO.h"
-#include "TextLCD.h"
-TextLCD lcd(p24, p25, p26, p27, p28, p29);
 
 MicIO::MicIO(PinName micOut, PinName clockIn) : _micOut(micOut), _clockIn(clockIn) {
     clockPeriod = 0.25;
@@ -50,7 +48,6 @@
             } else { //lower 4 bits
                 fourBits = lower4Bits(outputStr[current4BitIndex/2]);
             }
-            lcd.printf("%i",fourBits);
             sinSeed = _getSinSeed(fourBits); //get new sinSeed
         }
     }